bf80f1bbf9062953bce51e92d5bf37838e459daf,portal-service/src/com/liferay/portal/kernel/servlet/ServletContextUtil.java,ServletContextUtil,getResourceURI,#URL#,128

Before Change


	}

	public static URI getResourceURI(URL url) throws URISyntaxException {
		return _getResourceURI(url.getProtocol(), url.getPath());
	}

	public static String getRootPath(ServletContext servletContext)

After Change


	}

	public static URI getResourceURI(URL url) throws URISyntaxException {
		return new URI(url.getProtocol(), url.getPath(), null);
	}

	public static String getRootPath(ServletContext servletContext)